MsgExec constructor

MsgExec({
  1. String? grantee,
  2. Iterable<Any>? msgs,
})

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;
}