Describe.custom constructor

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

自定义

Implementation

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