DynamiteHttpBasicAuthentication constructor

const DynamiteHttpBasicAuthentication({
  1. required String username,
  2. required String password,
})

Creates a new http basic authentication.

Implementation

const DynamiteHttpBasicAuthentication({
  required this.username,
  required this.password,
}) : super(
        type: 'http',
        scheme: 'basic',
      );