parseOnlineResponse method
Parse online API response and return success status
Implementation
@override
bool parseOnlineResponse(dynamic responseData) {
try {
return responseData[ConstantVariable.status] == ConstantVariable.camelSuccess &&
responseData[ConstantVariable.responseCode] == ConstantVariable.statusCode200;
} catch (e) {
return false;
}
}