devices static method

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

regular: devices thin: devices light: devices bold: devices fill: devices duotone: devices

Implementation

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