getAllIds method Null safety
- Uint8List address
Implementation
List<String> getAllIds(Uint8List address) {
ResultSet results = db.select('''
SELECT $columnId from $table
WHERE $columnXchain = x'${Bytes.hexEncode(address)}'; ''');
return results
.map<String>((row) => base64Url.encode(row[columnId]))
.toList();
}