getErrorMessage property
Implementation
GetValueFromResponse<String?>? getErrorMessage =
(dynamic response, {String? url}) {
if (response is Map) {
final String message = response['message'] ?? "";
return message;
}
return null;
};