ApiSecurityResult constructor

const ApiSecurityResult({
  1. required String url,
  2. required bool isHttps,
  3. required bool hasAuthHeader,
  4. required bool hasJwtToken,
})

Implementation

const ApiSecurityResult({
  required this.url,
  required this.isHttps,
  required this.hasAuthHeader,
  required this.hasJwtToken,
});