Header constructor

const Header({
  1. String? description,
  2. Schema? schema,
})

Implementation

const factory Header({
  /// Text
  String? description,

  /// The schema of the content
  Schema? schema,
}) = _Header;