copyWith method
AssetReportFreddieGetResponse
copyWith({
- AssetReportFreddie? deal,
- String? requestId,
- double? schemaVersion,
Implementation
AssetReportFreddieGetResponse copyWith(
{AssetReportFreddie? deal, String? requestId, double? schemaVersion}) {
return AssetReportFreddieGetResponse(
deal: deal ?? this.deal,
requestId: requestId ?? this.requestId,
schemaVersion: schemaVersion ?? this.schemaVersion);
}