Spoiler constructor

const Spoiler({
  1. Key? key,
  2. required Widget child,
  3. String? reason,
})

Implementation

const Spoiler({
  Key? key,
  required this.child,
  this.reason,
}) : super(key: key);