MsgExec constructor
Implementation
factory MsgExec({
$core.String? grantee,
$core.Iterable<$3.Any>? msgs,
}) {
final _result = create();
if (grantee != null) {
_result.grantee = grantee;
}
if (msgs != null) {
_result.msgs.addAll(msgs);
}
return _result;
}