briefcaseMetal static method

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

regular: briefcase-metal thin: briefcase-metal light: briefcase-metal bold: briefcase-metal fill: briefcase-metal duotone: briefcase-metal

Implementation

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