Code constructor

Code(
  1. String code, {
  2. String? id,
  3. Map<String, String>? attributes,
  4. Map<String, dynamic>? style,
  5. String? className,
})

Implementation

Code(
  this.code, {
  super.id,
  super.attributes,
  super.style,
  super.className,
});