filmStrip static method

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

regular: film-strip thin: film-strip light: film-strip bold: film-strip fill: film-strip duotone: film-strip

Implementation

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