Coin constructor
Implementation
Coin(
{String id = "bitcoin", String symbol = "btc", String name = "bitcoin"}) {
json = {"id": id, "symbol": symbol, "name": name};
this.id = id;
this.symbol = symbol;
this.name = name;
}
Coin(
{String id = "bitcoin", String symbol = "btc", String name = "bitcoin"}) {
json = {"id": id, "symbol": symbol, "name": name};
this.id = id;
this.symbol = symbol;
this.name = name;
}