copyWith method
Implementation
AcceptOauthRequest copyWith({
String? url,
String? matchCode,
bool? allowWriteAccess,
bool? allowPhoneNumberAccess,
}) => AcceptOauthRequest(
url: url ?? this.url,
matchCode: matchCode ?? this.matchCode,
allowWriteAccess: allowWriteAccess ?? this.allowWriteAccess,
allowPhoneNumberAccess:
allowPhoneNumberAccess ?? this.allowPhoneNumberAccess,
);