function property

AppIconData get function

regular: function thin: function light: function bold: function fill: function duotone: function

Implementation

static AppIconData get function {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.function;
    case AppIconsStyle.thin:
      return AppIconsThin.function;
    case AppIconsStyle.light:
      return AppIconsLight.function;
    case AppIconsStyle.bold:
      return AppIconsBold.function;
    case AppIconsStyle.fill:
      return AppIconsFill.function;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.function;
  }
}