cameraRotate static method

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

regular: camera-rotate thin: camera-rotate light: camera-rotate bold: camera-rotate fill: camera-rotate duotone: camera-rotate

Implementation

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