deviceMobileCamera static method

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

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

Implementation

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