Line data Source code
1 : class ResultCamera { 2 : late String? base64; 3 : late String? encrypted; 4 : static const String map_base64 = "base64"; 5 : static const String map_encrypted = "encrypted"; 6 : 7 0 : ResultCamera(String? base64, String? encrypted) { 8 0 : this.base64 = base64; 9 0 : this.encrypted = encrypted; 10 : } 11 : }