copyWith method
CreditRelayGetRequest
copyWith({
- String? clientId,
- String? secret,
- String? relayToken,
- ReportType? reportType,
Implementation
CreditRelayGetRequest copyWith(
{String? clientId,
String? secret,
String? relayToken,
enums.ReportType? reportType}) {
return CreditRelayGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
relayToken: relayToken ?? this.relayToken,
reportType: reportType ?? this.reportType);
}