copyWith method
AssetReportGetResponse
copyWith({
- AssetReport? report,
- List<
Warning> ? warnings, - String? requestId,
Implementation
AssetReportGetResponse copyWith(
{AssetReport? report, List<Warning>? warnings, String? requestId}) {
return AssetReportGetResponse(
report: report ?? this.report,
warnings: warnings ?? this.warnings,
requestId: requestId ?? this.requestId);
}