canParse static method
Implementation
static bool canParse(Object? obj) {
if (obj is! Map<String, dynamic>) {
return false;
}
if (obj['restart'] is! bool?) {
return false;
}
if (obj['suspendDebuggee'] is! bool?) {
return false;
}
if (obj['terminateDebuggee'] is! bool?) {
return false;
}
return RequestArguments.canParse(obj);
}