fromMap method
Implementation
p3.ScreenDestination fromMap(Map<String, dynamic> map) => p3.ScreenDestination(id: Mapper.i.$get(map, 'id'), name: Mapper.i.$getOpt(map, 'name') ?? '', hSize: Mapper.i.$get(map, 'hSize'), vSize: Mapper.i.$get(map, 'vSize'), layers: Mapper.i.$get(map, 'layers'), destOutMapColl: Mapper.i.$getOpt(map, 'destOutMapColl') ?? const []);