SignPdfElement constructor

SignPdfElement({
  1. required String type,
  2. required String data,
  3. required Map<String, double> position,
  4. required Map<String, double> size,
  5. double rotation = 0,
  6. double scale = 1,
  7. required int page,
  8. String? color,
  9. double? fontSize,
  10. String? fontFamily,
})

Constructor

Implementation

SignPdfElement({
  required this.type,
  required this.data,
  required this.position,
  required this.size,
  this.rotation = 0,
  this.scale = 1,
  required this.page,
  this.color,
  this.fontSize,
  this.fontFamily,
});