CodePanel constructor

const CodePanel({
  1. Key? key,
  2. required String code,
  3. Color? color,
})

Implementation

const CodePanel({Key? key, required this.code, this.color}) : super(key: key);