1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/models/api_response.dart

29 lines
602 B
Dart
Raw Normal View History

2019-04-22 17:16:26 +00:00
import 'dart:convert';
/// API response
///
/// @author Pierre HUBERT
class APIResponse {
final int code;
final String content;
const APIResponse(this.code, this.content) : assert(code != null);
List<dynamic> getArray() => jsonDecode(this.content);
Map<String, dynamic> getObject() => jsonDecode(this.content);
2019-05-18 16:48:12 +00:00
/// Check if the request is successful or not
bool get isOK => code == 200;
2020-04-15 10:04:19 +00:00
/// Make sure the request succeed, or throw an exception else
APIResponse assertOk() {
if(!this.isOK)
throw Exception("Request failed with status $code");
return this;
}
2019-04-22 17:16:26 +00:00
}