prescription static method

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

regular: prescription thin: prescription light: prescription bold: prescription fill: prescription duotone: prescription

Implementation

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