authorize method

Implementation

Future<MixinResponse<AuthorizationResponse>> authorize(
        AuthorizeRequest request) =>
    MixinResponse.request<AuthorizationResponse>(
      dio.post('/oauth/authorize', data: request),
      AuthorizationResponse.fromJson,
    );