hardDrives static method

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

regular: hard-drives thin: hard-drives light: hard-drives bold: hard-drives fill: hard-drives duotone: hard-drives

Implementation

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