loadDeck method

Future<DeckReferences> loadDeck()

Implementation

Future<DeckReferences> loadDeck() async {
  return (
    slides: await _loadSlidesRef(),
    config: await _loadConfigRef(),
    assets: await _loadAssetsRef(),
  );
}