fileCode static method

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

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

Implementation

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