HookConfig constructor

const HookConfig({
  1. bool continueOnError = true,
  2. Duration timeout = const Duration(seconds: 5),
  3. Map<String, dynamic> customConfig = const {},
})

Implementation

const HookConfig({
  this.continueOnError = true,
  this.timeout = const Duration(seconds: 5),
  this.customConfig = const {},
});