briefcase static method

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

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

Implementation

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