LoginUserResponse constructor

const LoginUserResponse({
  1. String? status,
  2. String? message,
  3. int? code,
  4. LoginUserResponseData? data,
})

Implementation

const LoginUserResponse({
  this.status,
  this.message,
  this.code,
  this.data,
});