sendVTTransaction method

Future sendVTTransaction(
  1. VTTransaction transaction, {
  2. bool testing = true,
})

Implementation

Future<dynamic> sendVTTransaction(VTTransaction transaction,
    {bool testing = true}) async {
  return await send(
      transaction:
          Transaction(valueTransfer: transaction).jsonMap(asHex: true));
}