uploadSimple static method

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

regular: upload-simple thin: upload-simple light: upload-simple bold: upload-simple fill: upload-simple duotone: upload-simple

Implementation

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