Line data Source code
1 : class UnicoErrorChannel { 2 : late int? code; 3 : late String? description; 4 : late String? methodName; 5 : static const String unicoError = "unicoError"; 6 : static const String map_code = "code"; 7 : static const String map_description = "description"; 8 : static const String errorMethod = "errorMethodName"; 9 : 10 0 : UnicoErrorChannel(int? code, String? description, String? methodName) { 11 0 : this.code = code; 12 0 : this.description = description; 13 0 : this.methodName = methodName; 14 : } 15 : }