LoginResponse constructor

LoginResponse({
  1. required String access_token,
  2. required int expires_in,
  3. String? membership,
  4. String? refresh_token,
})

Implementation

LoginResponse({
  required this.access_token,
  required this.expires_in,
  this.membership,
  this.refresh_token,
});