Execute.align constructor

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

Aligns the position to the corners of the block grid.

Implementation

Execute.align(
  String axis, {
  required this.children,
  this.encapsulate = true,
  this.targetFilePath = 'objd',
  this.targetFileName,
}) {
  _args = align(axis).args;
}