UnmappedAttribute.fromJson constructor

UnmappedAttribute.fromJson(
  1. Map<String, dynamic> json
)

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(),
  );
}