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