PrinterCustomBody constructor

const PrinterCustomBody({
  1. Key? key,
  2. required Key globalKey,
  3. required Widget child,
})

Implementation

const PrinterCustomBody({
  super.key,
  required this.globalKey,

  required this.child,
});