InvokeAction constructor
Implementation
factory InvokeAction({
$core.String? name,
$core.List<$core.int>? fromAccount,
Target? target,
$core.List<$core.int>? payload,
}) {
final $result = create();
if (name != null) {
$result.name = name;
}
if (fromAccount != null) {
$result.fromAccount = fromAccount;
}
if (target != null) {
$result.target = target;
}
if (payload != null) {
$result.payload = payload;
}
return $result;
}