fileMd static method

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

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

Implementation

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