fileCloud static method

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

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

Implementation

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