authorize method

Future<void> authorize(
  1. String code
)

Not implemented for Authenticators other than WebAuthenticator.

Implementation

Future<void> authorize(String code) async {
  throw DRAWInternalError(
      "'authorize' is only implemented for 'WebAuthenticator'");
}