exec method
Generates a Execute Widget (execute as the entity)
entity.exec().run(Say('hi')).queue()
short form for entity.execute()
Implementation
RestActionAble exec({
List<Widget> children = const [],
String targetFilePath = 'objd',
String? targetFileName,
bool encapsulate = true,
}) =>
as(
children: children,
targetFilePath: targetFilePath,
targetFileName: targetFileName,
encapsulate: encapsulate,
);