fileCSharp static method

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

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

Implementation

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