getAllIds method Null safety

List<String> getAllIds(
  1. 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();
}