mintTo method

Future mintTo(
  1. String to,
  2. BigInt amount
)

Implementation

Future<dynamic> mintTo(String to, BigInt amount) async =>
    await _contract.send("mintTo", [to, amount]);