initialize method

Future<void> initialize()

Implementation

Future<void> initialize() async {
  await source.initialize();
  if (source.selectedSourceId != null && source.selectedCollection != null) {
    await table.bindTo(source.selectedSourceId!, source.selectedCollection!);
  }
  _initialized = true;
  notifyListeners();
}