AuthenticationDataModel constructor

AuthenticationDataModel({
  1. required String id,
  2. required String token,
  3. User? user,
  4. String? refreshToken,
  5. AuthDeviceInfo? deviceInfo,
})

Implementation

AuthenticationDataModel({
  required this.id,
  required this.token,
  this.user,
  this.refreshToken,
  this.deviceInfo,
});