copyWith method

AcceptOauthRequest copyWith({
  1. String? url,
  2. String? matchCode,
  3. bool? allowWriteAccess,
  4. bool? allowPhoneNumberAccess,
})

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,
);