CodeWrapperWidget constructor

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

Implementation

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