scope method
Implementation
void scope(Key id, void Function() drawScope) {
focus.pushScope(id);
try {
drawScope();
} finally {
focus.popScope();
}
}
void scope(Key id, void Function() drawScope) {
focus.pushScope(id);
try {
drawScope();
} finally {
focus.popScope();
}
}