UserAuthResponse constructor

UserAuthResponse({
  1. bool? success,
  2. String? token,
  3. String? uid,
})

Implementation

UserAuthResponse({
  this.success,
  this.token,
  this.uid});