Describe constructor

const Describe({
  1. Key? key,
  2. required String title,
  3. required String? data,
})

Implementation

const Describe({
  Key? key,
  required this.title,
  required this.data,
})   : child = null,
      super(key: key);