FastDictEntryEntity constructor

const FastDictEntryEntity({
  1. required String name,
  2. 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,
});