fromJson static method
Creates Class Object from Json
Implementation
static Si1Field fromJson(Map<String, dynamic> map) => Si1Field(
name: map['name'].value,
type: map['type'],
typeName: map['typeName'].value,
docs: (map['docs'] as List).cast<String>(),
);