AuthResult constructor

AuthResult({
  1. required bool success,
  2. String? message,
  3. Map<String, dynamic>? user,
  4. Session? session,
  5. String? token,
  6. Map<String, dynamic>? data,
})

Implementation

AuthResult({
  required this.success,
  this.message,
  this.user,
  this.session,
  this.token,
  this.data,
});