encodeBIP21 method
Converts a bch address
and its options
into bip-21 uri
The following example shows the format of options
{
amount: 12.5,
label: 'coinbase donation',
message: "and ya don't stop",
}
Implementation
static String encodeBIP21(String address, Map<String, dynamic> options) {
return Bip21.encode(address, options);
}