TransDB_TransItem constructor

TransDB_TransItem({
  1. TransType? transType,
  2. String? destMsg,
  3. String? helperTransDest,
})

Implementation

factory TransDB_TransItem({
  TransType? transType,
  $core.String? destMsg,
  $core.String? helperTransDest,
}) {
  final _result = create();
  if (transType != null) {
    _result.transType = transType;
  }
  if (destMsg != null) {
    _result.destMsg = destMsg;
  }
  if (helperTransDest != null) {
    _result.helperTransDest = helperTransDest;
  }
  return _result;
}