UnmappedAttribute.fromJson constructor
Implementation
factory UnmappedAttribute.fromJson(Map<String, dynamic> json) {
return UnmappedAttribute(
attribute: json['Attribute'] != null
? Attribute.fromJson(json['Attribute'] as Map<String, dynamic>)
: null,
type: (json['Type'] as String?)?.toEntityType(),
);
}