import 'Data.dart'; class CheckSafetyVerificationEntity { CheckSafetyVerificationEntity({ this.description, this.errorCode, this.errorMsg,}); CheckSafetyVerificationEntity.fromJson(dynamic json) { description = json['description']; errorCode = json['errorCode']; errorMsg = json['errorMsg']; } String? description; int? errorCode; String? errorMsg; Map toJson() { final map = {}; map['description'] = description; map['errorCode'] = errorCode; map['errorMsg'] = errorMsg; return map; } }