This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import 'package:flutter/widgets.dart';
/// 学习官OA系统图标数据类
///
/// 继承自 IconData,提供统一的图标数据接口
class YXIconData extends IconData {
/// 创建图标数据实例
/// [codePoint] Unicode码点
const YXIconData(super.codePoint)
: super(
fontFamily: 'iconfont',
fontPackage: 'yx_icon_fonts',
);
}