PrintNode constructor

PrintNode({
  1. required PrintType type,
  2. PrintTextStyle? style,
  3. String? text,
  4. String? path,
})

Implementation

PrintNode({
  required this.type,
  this.style,
  this.text,
  this.path,
});