exists method

  1. @override
Future<bool> exists(
  1. ProtocolScheme scheme
)
override

Check if the scheme is already registered.

Implementation

@override
Future<bool> exists(ProtocolScheme scheme) async {
  return await find(scheme) != null;
}