toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ignoreMinOccurs = this.ignoreMinOccurs;
  final schemas = this.schemas;
  final schematizedParsingType = this.schematizedParsingType;
  final types = this.types;
  final unexpectedSegmentHandling = this.unexpectedSegmentHandling;
  return {
    'ignoreMinOccurs': ?ignoreMinOccurs,
    'schemas': ?schemas,
    'schematizedParsingType': ?schematizedParsingType,
    'types': ?types,
    'unexpectedSegmentHandling': ?unexpectedSegmentHandling,
  };
}