Section constructor
Section({
- required MessageBuilder builder,
- Button? button,
- Thumbnail? thumbnail,
Implementation
Section({required this.builder, Button? button, Thumbnail? thumbnail})
: assert(
button == null || thumbnail == null,
'Accessory must be either a button or a thumbnail, not both.',
),
_button = button,
_thumbnail = thumbnail;