Template constructor

Template({
  1. String? id,
  2. Map<String, String>? attributes,
  3. Map<String, dynamic>? style,
  4. String? className,
  5. String tag = 'div',
})

Implementation

Template({
  super.id,
  super.attributes,
  super.style,
  super.className,
  super.tag = 'div',
});