fileTxt static method

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

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

Implementation

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