FastDictEntryEntity constructor
const
FastDictEntryEntity({
- required String name,
- dynamic value,
Constructs a FastDictEntryEntity instance.
The name parameter is required and represents the name of the dictionary
entry. The value parameter is required and represents the value of the
dictionary entry.
Implementation
const FastDictEntryEntity({
required this.name,
this.value,
});