Example constructor

const Example({
  1. required String title,
  2. String? documentation,
  3. Map<String, Object?> input = const {},
  4. Map<String, Object?> output = const {},
  5. ErrorExample? error,
})

Implementation

const Example({
  required this.title,
  this.documentation,
  this.input = const {},
  this.output = const {},
  this.error,
});