registerAsync static method
Implementation
static void registerAsync({
Future<CurveGate> Function()? curve,
Future<Ed25519Gate> Function()? ed25519,
}) {
_asyncCurveFactory = curve ?? _asyncCurveFactory;
_asyncEd25519Factory = ed25519 ?? _asyncEd25519Factory;
}