ComputedField.max constructor
Create a MAX aggregate computed field.
Implementation
factory ComputedField.max(
String field, {
required String from,
Map<String, dynamic>? where,
}) {
return ComputedField._(
field: field,
operation: AggregateOp.max,
from: from,
where: where,
);
}