close method

Future<void> close()

Implementation

Future<void> close() async {
  if (_db != null) {
    js_util.callMethod(_db, 'close', []);
    _db = null;
  }
}