getErrorCode property
Implementation
GetValueFromResponse<MapEntry<String, dynamic>?>? getErrorCode =
(dynamic response, {String? url}) {
if (response is Map) {
if (response["errorCode"] == null) return null;
return MapEntry("errorCode", response["errorCode"]);
}
return null;
};