Tuple typedef

Tuple = Map<String, dynamic>

The tuple to store the original values of a datum.

The key strings are variable names. The value types can only be num, String, or DateTime.

See also:

  • Variable, which creates original value tuple fields from input datum.

Implementation

typedef Tuple = Map<String, dynamic>;