import 'package:json_annotation/json_annotation.dart'; part 'server_bean.g.dart'; @JsonSerializable() class ServerBean { String? HissAiApiUrl; String? HissAiPayUrl; ServerBean(this.HissAiApiUrl,this.HissAiPayUrl); factory ServerBean.fromJson(Map json) => _$ServerBeanFromJson(json); Map toJson() => _$ServerBeanToJson(this); }