rawResponse property
Getter for _rawResponse
. Leads to UnsupportedError on iOs.
Implementation
String get rawResponse {
if (Platform.isAndroid) {
return _rawResponse;
}
throw UnsupportedError('The attribute rawResponse is not available on iOS');
}