copyWith method

AssetReportFreddieGetResponse copyWith({
  1. AssetReportFreddie? deal,
  2. String? requestId,
  3. 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);
}