SyncConfig.fromSet constructor

SyncConfig.fromSet({
  1. Set<String> names = const {},
  2. Set<String> prefixes = const {},
})

Implementation

SyncConfig.fromSet(
    {Set<String> names = const {}, Set<String> prefixes = const {}}) {
  _names = names;
  _prefixes = prefixes;
}