copyleft static method

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

regular: copyleft thin: copyleft light: copyleft bold: copyleft fill: copyleft duotone: copyleft

Implementation

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