IndexElementDefinition.fromJson constructor
Implementation
factory IndexElementDefinition.fromJson(
Map<String, dynamic> jsonSerialization) {
return IndexElementDefinition(
type: _i2.IndexElementDefinitionType.fromJson(
(jsonSerialization['type'] as int)),
definition: jsonSerialization['definition'] as String,
);
}