EmailBlock constructor

EmailBlock({
  1. required EmailBlockType type,
  2. required String content,
  3. String? url,
  4. Map<String, dynamic>? styles,
})

Implementation

EmailBlock({
  required this.type,
  required this.content,
  this.url,
  this.styles,
});