getErrorMessage property

GetValueFromResponse<String?>? getErrorMessage
getter/setter pair

Implementation

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