LoginResponse constructor

const LoginResponse({
  1. LoginData? data,
  2. required String status,
  3. String? error,
})

Implementation

const LoginResponse({this.data, required this.status, this.error});