deviceTabletCamera static method

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

regular: device-tablet-camera thin: device-tablet-camera light: device-tablet-camera bold: device-tablet-camera fill: device-tablet-camera duotone: device-tablet-camera

Implementation

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