OauthLinkInfo constructor

OauthLinkInfo({
  1. required int userId,
  2. required String url,
  3. required String domain,
  4. required bool fromApp,
  5. required String verifiedAppName,
  6. required int botUserId,
  7. required bool requestWriteAccess,
  8. required bool requestPhoneNumberAccess,
  9. required String browser,
  10. required String platform,
  11. required String ipAddress,
  12. required String location,
  13. required bool matchCodeFirst,
  14. required List<String> matchCodes,
})

Implementation

OauthLinkInfo({
  required this.userId,
  required this.url,
  required this.domain,
  required this.fromApp,
  required this.verifiedAppName,
  required this.botUserId,
  required this.requestWriteAccess,
  required this.requestPhoneNumberAccess,
  required this.browser,
  required this.platform,
  required this.ipAddress,
  required this.location,
  required this.matchCodeFirst,
  required this.matchCodes,
});