getScene method

Scene getScene(
  1. String id
)

Implementation

Scene getScene(String id) {
  assert(scenes.containsKey(id),
      'There is no scene with id $id. Also note that a scene with id "root" should be defined.');
  return scenes[id]!;
}