copyWith method

CreditRelayRemoveResponse copyWith({
  1. bool? removed,
  2. String? requestId,
})

Implementation

CreditRelayRemoveResponse copyWith({bool? removed, String? requestId}) {
  return CreditRelayRemoveResponse(
      removed: removed ?? this.removed,
      requestId: requestId ?? this.requestId);
}