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