at method

RestActionAble at({
  1. List<Widget> children = const [],
  2. String targetFilePath = 'objd',
  3. String? targetFileName,
  4. bool encapsulate = true,
})

Generates a Execute Widget (execute at the entity)

entity.at().run(Particle(ParticleType.flame)).queue()

Implementation

RestActionAble at({
  List<Widget> children = const [],
  String targetFilePath = 'objd',
  String? targetFileName,
  bool encapsulate = true,
}) =>
    StraitWidget.builder.create(Execute(
      children: children,
      targetFilePath: targetFilePath,
      targetFileName: targetFileName,
      encapsulate: encapsulate,
    ).at(this));