Desirable constructor

Desirable({
  1. required Widget child,
  2. Key? key,
})

Implementation

Desirable({
  required this.child,
  Key? key,
}) : super(key: key);