ProtocolBox constructor

const ProtocolBox({
  1. Key? key,
  2. Protocol? protocol,
  3. Widget? child,
})

Implementation

const ProtocolBox({
  super.key,
  this.protocol,
  this.child,
});