UnknownComponent constructor

const UnknownComponent({
  1. Key? key,
  2. required ComponentModel component,
  3. bool showDebugInfo = false,
})

Implementation

const UnknownComponent({
  Key? key,
  required this.component,
  this.showDebugInfo = false,
}) : super(key: key);