TxDescriptor constructor

TxDescriptor({
  1. String? fullname,
  2. Iterable<MsgDescriptor>? msgs,
})

Implementation

factory TxDescriptor({
  $core.String? fullname,
  $core.Iterable<MsgDescriptor>? msgs,
}) {
  final _result = create();
  if (fullname != null) {
    _result.fullname = fullname;
  }
  if (msgs != null) {
    _result.msgs.addAll(msgs);
  }
  return _result;
}