MsgTransferCookbook constructor

MsgTransferCookbook({
  1. String? creator,
  2. String? id,
  3. String? recipient,
})

Implementation

factory MsgTransferCookbook({
  $core.String? creator,
  $core.String? id,
  $core.String? recipient,
}) {
  final _result = create();
  if (creator != null) {
    _result.creator = creator;
  }
  if (id != null) {
    _result.id = id;
  }
  if (recipient != null) {
    _result.recipient = recipient;
  }
  return _result;
}