InitResultEntity.fromJson constructor

InitResultEntity.fromJson(
  1. dynamic json
)

Implementation

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