StyleTransform.rotate constructor

StyleTransform.rotate(
  1. Object value
)

Creates a rotate(...) transform.

Implementation

factory StyleTransform.rotate(Object value) {
  return StyleTransform('rotate(${cssValue(value)})');
}