FlutterMobileIMSDKResult.fromJson constructor
- Map json
Implementation
FlutterMobileIMSDKResult.fromJson(Map<dynamic, dynamic> json) {
if (json == null) {
result = false;
return;
}
result = json['result'] == true;
value = json['value'];
}