Execute.at constructor

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

Implementation

Execute.at(
  Entity entity, {
  required this.children,
  this.encapsulate = true,
  this.targetFilePath = 'objd',
  this.targetFileName,
}) {
  _args = at(entity).args;
}