network method

Future<Network> network()

Implementation

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