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