SchemaSegment.fromJson constructor

SchemaSegment.fromJson(
  1. Map json_
)

Implementation

SchemaSegment.fromJson(core.Map json_)
  : this(
      maxOccurs: json_['maxOccurs'] as core.int?,
      minOccurs: json_['minOccurs'] as core.int?,
      type: json_['type'] as core.String?,
    );