tryParse static method
Attempts to parse event and returns null for unsupported shapes.
Implementation
static VlessStatus? tryParse(Object? event) {
try {
return VlessStatus.fromEvent(event);
} on FormatException {
return null;
}
}
Attempts to parse event and returns null for unsupported shapes.
static VlessStatus? tryParse(Object? event) {
try {
return VlessStatus.fromEvent(event);
} on FormatException {
return null;
}
}