EntityProperty.fromJson constructor

EntityProperty.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory EntityProperty.fromJson(Map<String, Object?> json) {
  return EntityProperty(
    key: json[r'key'] as String?,
    value: json[r'value'],
  );
}