import 'package:flutter/services.dart'; class InspectionPersonModel { String? name; String? email; String? signature; Uint8List? localSignature; InspectionPersonModel({ this.name, this.email, this.signature, this.localSignature, }); }