call method

Future<Uint8List> call(
  1. Uint8List message,
  2. Uint8List seckey
)

Signs message using the seckey and returns the signature.

Implementation

Future<Uint8List> call(final Uint8List message, final Uint8List seckey) =>
    compute((_) => sync(message, seckey), null);