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