FFCustomIconFamily constructor
FFCustomIconFamily({
- String? familyName,
- String? iconFilePath,
- Iterable<
FFCustomIconFamily_IconInfo> ? icons,
Implementation
factory FFCustomIconFamily({
$core.String? familyName,
$core.String? iconFilePath,
$core.Iterable<FFCustomIconFamily_IconInfo>? icons,
}) {
final result = create();
if (familyName != null) result.familyName = familyName;
if (iconFilePath != null) result.iconFilePath = iconFilePath;
if (icons != null) result.icons.addAll(icons);
return result;
}