parse static method

NavigationRegion parse(
  1. Map m
)

Implementation

static NavigationRegion parse(Map m) {
  return new NavigationRegion(
      m['offset'], m['length'], new List.from(m['targets']));
}