fileC static method

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

regular: file-c thin: file-c light: file-c bold: file-c fill: file-c duotone: file-c

Implementation

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