copyWith method
Implementation
TransferCreateResponse copyWith({Transfer? transfer, String? requestId}) {
return TransferCreateResponse(
transfer: transfer ?? this.transfer,
requestId: requestId ?? this.requestId);
}
TransferCreateResponse copyWith({Transfer? transfer, String? requestId}) {
return TransferCreateResponse(
transfer: transfer ?? this.transfer,
requestId: requestId ?? this.requestId);
}