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