Created project base structure, state management, router and login
This commit is contained in:
11
lib/models/api_response.dart
Normal file
11
lib/models/api_response.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class ApiResponse {
|
||||
final bool successful;
|
||||
final dynamic content;
|
||||
final int? statusCode;
|
||||
|
||||
const ApiResponse({
|
||||
required this.successful,
|
||||
this.content,
|
||||
this.statusCode,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user