allStylePacks method

Future<List<StylePack>> allStylePacks()

Fetch an array of the existing style packages.

Implementation

Future<List<StylePack>> allStylePacks() async {
  return _api.allStylePacks().then((value) => value.nonNulls.toList());
}