TxDescriptor constructor
TxDescriptor({
- String? fullname,
- 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;
}