hardDrive static method

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

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

Implementation

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