Execute.strait constructor

Execute.strait({
  1. required dynamic run(
    1. List<Widget>
    ),
  2. Entity? as,
  3. Entity? at,
  4. Relation? on,
  5. dynamic location,
  6. String? align,
  7. String targetFilePath = 'objd',
  8. String? targetFileName,
  9. Facing? anchor,
  10. Condition? If,
  11. Condition? unless,
  12. dynamic facing,
  13. Rotation? rotation,
  14. Dimension? dimension,
  15. bool encapsulate = true,
  16. List<List<String>>? args,
  17. 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,
      );