selectMax static method
Select Max of column value
Implementation
static Future<Object?> selectMax(DatabaseExecutor db, String tableName, String column,
{String? where, List<Object?>? whereArgs}) async {
return await select(db, tableName, ["MAX($column)"], where: where, whereArgs: whereArgs, isUnique: true);
}