notifyWitnesses function

Future<bool> notifyWitnesses({
  1. required Identifier identifier,
  2. dynamic hint,
})

Publishes events to the witnesses

Implementation

Future<bool> notifyWitnesses(
    {required Identifier identifier, dynamic hint}) async {
  return await KeriPlatformInterface.instance
      .notifyWitnesses(identifier: identifier);
}