copy property

AppIconData get copy

regular: copy thin: copy light: copy bold: copy fill: copy duotone: copy

Implementation

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