copyWith method

UpdateNewOauthRequest copyWith({
  1. String? domain,
  2. String? location,
  3. String? url,
})

Implementation

UpdateNewOauthRequest copyWith({
  String? domain,
  String? location,
  String? url,
}) => UpdateNewOauthRequest(
  domain: domain ?? this.domain,
  location: location ?? this.location,
  url: url ?? this.url,
);