DynamiteHttpBearerAuthentication constructor

const DynamiteHttpBearerAuthentication({
  1. required String token,
})

Creates a new http bearer authentication.

Implementation

const DynamiteHttpBearerAuthentication({
  required this.token,
}) : super(
        type: 'http',
        scheme: 'bearer',
      );