copyWith method

AssetReportCreateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. List<String>? accessTokens,
  4. int? daysRequested,
  5. AssetReportCreateRequestOptions? options,
})

Implementation

AssetReportCreateRequest copyWith(
    {String? clientId,
    String? secret,
    List<String>? accessTokens,
    int? daysRequested,
    AssetReportCreateRequestOptions? options}) {
  return AssetReportCreateRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      accessTokens: accessTokens ?? this.accessTokens,
      daysRequested: daysRequested ?? this.daysRequested,
      options: options ?? this.options);
}