LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : import 'package:agattp/src/agattp_method.dart'; 2 : 3 : /// An interface for HTTP Authentication strategies 4 : // ignore: one_member_abstracts 5 : abstract class AgattpAuthInterface { 6 0 : const AgattpAuthInterface(); 7 : 8 : /// Returns the headers to be used for authentication. Method and URI are only 9 : /// ever required for Digest, but we include them in the interface anyway 10 : Future<Map<String, String>> getAuthHeaders(AgattpMethod method, Uri uri); 11 : } |
![]() |
Generated by: LCOV version 2.0-1 |