filmSlate static method

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

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

Implementation

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