getSupply method

Future<Supply> getSupply({
  1. GetSupplyConfig? config,
})

Returns information about the current supply.

Implementation

Future<Supply> getSupply({
  final GetSupplyConfig? config,
}) async =>
    (await getSupplyRaw(config: config)).result!.value!;