FastDictEntryEntity.fromJson constructor
Creates a FastDictEntryEntity instance from a JSON object.
Implementation
factory FastDictEntryEntity.fromJson(Map<String, dynamic> json) {
return FastDictEntryEntity(
name: json['name'] as String,
value: json['value'],
);
}