fromMaps static method

List<PagePath> fromMaps(
  1. List maps
)

Implementation

static List<PagePath> fromMaps(List maps) {
  return maps
      .cast<Map<String, dynamic>>()
      .map(PagePath._fromMap)
      .toList(growable: false);
}