instance property

ToolDatabaseModule get instance

Implementation

static ToolDatabaseModule get instance {
  if (_instance == null) {
    throw StateError(
      'ToolDatabaseModule has not been initialized. '
      'Call newInstance() first with ToolDatabaseParams.',
    );
  }
  return _instance!;
}