Dynamic constructor

Dynamic({
  1. required DynamicType type,
  2. String? customText,
  3. bool isHairpin = false,
  4. double? length,
})

Implementation

Dynamic({
  required this.type,
  this.customText,
  this.isHairpin = false,
  this.length,
});