createTx method

Future<Tx> createTx(
  1. Fee fee, {
  2. String memo = "",
})

Implementation

Future<Core.Tx> createTx(Fee fee, {String memo = ""}) async {
  return Core.Tx(TxBody(null, memo, 0), AuthInfo([], fee), []);
}