pdf_signature/lib/domain/models/signature_asset.dart

10 lines
323 B
Dart

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