monitorPlay static method

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

regular: monitor-play thin: monitor-play light: monitor-play bold: monitor-play fill: monitor-play duotone: monitor-play

Implementation

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