Max constructor

Max(
  1. String columnName, {
  2. bool castToNumeric = false,
  3. String? label,
})

Implementation

Max(String columnName, {bool castToNumeric = false, String? label})
    : super(
          type: AggregateType.max,
          columnName: columnName,
          label: label,
          castToNumeric: castToNumeric);