toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  if (appid != null) {
    _json['appid'] = appid;
  }
  if (appidExclude != null) {
    _json['appidExclude'] = appidExclude;
  }
  if (credProps != null) {
    _json['credProps'] = credProps?.toJson();
  }
  return _json;
}