cassetteTape static method

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

regular: cassette-tape thin: cassette-tape light: cassette-tape bold: cassette-tape fill: cassette-tape duotone: cassette-tape

Implementation

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