EntityTypesListItem.fromJson constructor

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

Implementation

factory EntityTypesListItem.fromJson(Map<String, dynamic> json) {
  return EntityTypesListItem(
    type: json['Type'] as String,
  );
}