HypenScope constructor

const HypenScope({
  1. required Widget child,
  2. Key? key,
  3. List<HypenEffect> effects = const [],
})

Implementation

const HypenScope({
  required this.child,
  super.key,
  this.effects = const [],
});