copyWith method

CreditRelayGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? relayToken,
  4. 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);
}