Execute.strait constructor
Execute.strait({
- required dynamic run(),
- Entity? as,
- Entity? at,
- Relation? on,
- dynamic location,
- String? align,
- String targetFilePath = 'objd',
- String? targetFileName,
- Facing? anchor,
- Condition? If,
- Condition? unless,
- dynamic facing,
- Rotation? rotation,
- Dimension? dimension,
- bool encapsulate = true,
- List<
List< ? args,String> > - List<
Widget> ? writable,
Implementation
Execute.strait({
required Function(List<Widget>) run,
Entity? as,
Entity? at,
Relation? on,
dynamic location,
String? align,
String targetFilePath = 'objd',
String? targetFileName,
Facing? anchor,
Condition? If,
Condition? unless,
dynamic facing,
Rotation? rotation,
Dimension? dimension,
bool encapsulate = true,
List<List<String>>? args,
List<Widget>? writable,
}) : this(
children: [StraitWidget(run)],
as: as,
at: at,
on: on,
location: location,
align: align,
targetFilePath: targetFilePath,
targetFileName: targetFileName,
anchor: anchor,
If: If,
unless: unless,
rotation: rotation,
dimension: dimension,
encapsulate: encapsulate,
args: args,
writable: writable,
);