decks library

Inlines two starter decks, i.e. lukeDeck and vaderDeck.

This library is a convenience for applications that want to provide some pre-built decks without having to manage external resources or build their own.

Example

// It's recommended to import the library with a prefix.
import 'package:unlimited/decks.dart' as decks;

void main() {
 final lukeDeck = decks.lukeDeck;
 final vaderDeck = decks.vaderDeck;

 // ...
}

Properties

lukeDeck Deck
sparkOfRebellion starter deck with Luke Skywalker.
final
vaderDeck Deck
sparkOfRebellion starter deck with Darth Vader.
final