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