FFCustomIconFamily constructor

FFCustomIconFamily({
  1. String? familyName,
  2. String? iconFilePath,
  3. 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;
}