Execute.rotated constructor

Execute.rotated(
  1. dynamic rot, {
  2. required List<Widget> children,
  3. bool encapsulate = true,
  4. String targetFilePath = 'objd',
  5. String? targetFileName,
})

Sets the execution rotation to the given rotation.

Implementation

Execute.rotated(
  dynamic rot, {
  required this.children,
  this.encapsulate = true,
  this.targetFilePath = 'objd',
  this.targetFileName,
}) {
  _args = rotated(rot).args;
}