fileCsv static method

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

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

Implementation

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