fileText static method

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

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

Implementation

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