Caption constructor

Caption({
  1. Component? content,
  2. String? id,
  3. String? className,
  4. Map<String, dynamic>? style,
  5. Map<String, String>? attributes,
  6. String tag = 'caption',
})

Implementation

Caption(
    {this.content,
    super.id,
    super.className,
    super.style,
    super.attributes,
    super.tag = 'caption'});