jsonValid method
Implementation
bool jsonValid() {
Map json = this;
return (json['code']?.toString() == 200.toString() ||
json['errno']?.toString() == 0.toString());
}
bool jsonValid() {
Map json = this;
return (json['code']?.toString() == 200.toString() ||
json['errno']?.toString() == 0.toString());
}