close method

Future<void> close()

Closes the Knot API session.

This method should be implemented by platform-specific classes. Throws an UnimplementedError if not overridden.

Implementation

Future<void> close() {
  throw UnimplementedError('close() has not been implemented.');
}