FSCodeViewer constructor

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

Implementation

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