SimpleBaseUrlWrapper constructor

const SimpleBaseUrlWrapper({
  1. Key? key,
  2. required Widget child,
  3. String? password,
  4. int? tapCount,
  5. List<ConfigurationItem>? configurations,
})

Implementation

const SimpleBaseUrlWrapper({
  super.key,
  required this.child,
  this.password,
  this.tapCount,
  this.configurations,
});