closedCaptioning static method

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

regular: closed-captioning thin: closed-captioning light: closed-captioning bold: closed-captioning fill: closed-captioning duotone: closed-captioning

Implementation

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