Key constructor

Key({
  1. required KeyType type,
  2. num? number,
  3. String? string,
  4. num? date,
  5. List<Key>? array,
})

Implementation

Key({required this.type, this.number, this.string, this.date, this.array});