Aggregate constructor

Aggregate(
  1. {required AggregateType type,
  2. required String columnName,
  3. String? label,
  4. bool castToNumeric = false}
)

Implementation

Aggregate(
    {required this.type,
    required this.columnName,
    this.label,
    this.castToNumeric = false});