copyWith method

AssetReportGetResponse copyWith({
  1. AssetReport? report,
  2. List<Warning>? warnings,
  3. 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);
}