convertMapListToUtxos method
Converts List of utxo maps into a list of Utxo objects
Implementation
static List<Utxo> convertMapListToUtxos(List utxoMapList) {
final utxos = <Utxo>[];
utxoMapList.forEach((utxoMap) {
utxos.add(Utxo.fromMap(utxoMap));
});
return utxos;
}