payload method

Future<Payload> payload()

The type of the address.

Implementation

Future<bridge.Payload> payload() async {
  try {
    final res = await bdkFfi.payloadStaticMethodApi(address: _address!);
    return res;
  } on bridge.Error catch (e) {
    throw handleBdkException(e);
  }
}