copyWith method

PaywayCheckTransaction copyWith({
  1. String? tranId,
  2. String? reqTime,
})

Implementation

PaywayCheckTransaction copyWith({
  String? tranId,
  String? reqTime,
}) {
  return PaywayCheckTransaction(
    tranId: tranId ?? this.tranId,
    reqTime: reqTime ?? this.reqTime,
  );
}