firma_interface.dart 315 B

12345678910111213
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter/services.dart';
  3. abstract class FirmaInterface {
  4. Future<Uint8List?> toPngBytes();
  5. void undo();
  6. void redo();
  7. void clear();
  8. Widget drawSignature({double? width, double? height, Color backgroundColor});
  9. bool isNotEmpty();
  10. bool isEmpty();
  11. }