startAll method

Future<void> startAll({
  1. bool syncOnStart = false,
})

Implementation

Future<void> startAll({bool syncOnStart = false}) async {
  for (final groupID in groupIDs) {
    await startGroup(groupID, syncOnStart: syncOnStart);
  }
}