tryFindErrorMessage method
Implementation
@override
String? tryFindErrorMessage() {
final jsonError = this.jsonError;
if (jsonError != null) {
return _findError(jsonError["error"]) ?? _findError(jsonError["message"]);
}
return tryAsString();
}