subtract static method

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

regular: subtract thin: subtract light: subtract bold: subtract fill: subtract duotone: subtract

Implementation

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