RequestTransactionPayloadReq constructor

RequestTransactionPayloadReq({
  1. String? receiver,
  2. double? tokenCount,
  3. String? comment,
  4. int? type,
})

Implementation

factory RequestTransactionPayloadReq({
  $core.String? receiver,
  $core.double? tokenCount,
  $core.String? comment,
  $core.int? type,
}) {
  final _result = create();
  if (receiver != null) {
    _result.receiver = receiver;
  }
  if (tokenCount != null) {
    _result.tokenCount = tokenCount;
  }
  if (comment != null) {
    _result.comment = comment;
  }
  if (type != null) {
    _result.type = type;
  }
  return _result;
}