fromJson static method
Deserializes the result from JSON.
Implementation
static RequestDataResult fromJson(Map<String, dynamic> json) {
return RequestDataResult(json['message'] as String);
}
Deserializes the result from JSON.
static RequestDataResult fromJson(Map<String, dynamic> json) {
return RequestDataResult(json['message'] as String);
}