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