InitResultEntity.fromJson constructor
InitResultEntity.fromJson(
- dynamic json
Implementation
InitResultEntity.fromJson(dynamic json) {
success = json['success'];
errorCode = json['errorCode'];
errorMsg = json['errorMsg'];
}