Hecatoncheir / magicthegathering_api_dart

https://docs.magicthegathering.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to use:

import 'package:magicthegathering_api_dart/magicthegathering_api.dart'
    as MagicTheGatheringApi;

void main() {
    final card = await MagicTheGatheringApi.Card.find(433277);
    assert(card?.name == "Edgar Markov");

    final cards = await MagicTheGatheringApi.Card.where(
      name: 'Edgar Markov',
      language: Language.English,
    );
}

About

https://docs.magicthegathering.io

License:GNU General Public License v3.0


Languages

Language:Dart 100.0%