Token constructor

Token({
  1. bool? success,
  2. String? token,
})

Implementation

Token({
  this.success,
  this.token,
});