fileJpg static method

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

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

Implementation

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