FastDictEntryEntity.fromJson constructor

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

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