AuthSessionInfo constructor

AuthSessionInfo({
  1. required String accessToken,
  2. required String phoneNumber,
  3. Map<String, dynamic> others = const {},
})

Implementation

AuthSessionInfo(
    {required this.accessToken,
    required this.phoneNumber,
    this.others = const {}});