import 'dart:typed_data'; /// SignatureAsset store image file of a signature, stored in the device or cloud storage class SignatureAsset { final String id; // unique id final Uint8List bytes; // List>? strokes; final String? name; // optional display name (e.g., filename) const SignatureAsset({required this.id, required this.bytes, this.name}); }