copySimple static method

PhosphorIconData copySimple([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

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

Implementation

static PhosphorIconData copySimple(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.copySimple;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.copySimple;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.copySimple;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.copySimple;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.copySimple;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.copySimple;
  }
}