Виджет buildResultCard содержит данные из результатов поиска, поэтому вы можете просто обернуть их в виджет Gesture Detector или Inkwell и перейти на любую нужную страницу. Вот пример того, как я пересылаю данные в MyPage.
Widget buildResultCard(data) {
return GestureDetector(
onTap: (){
Navigator.of(context).push(
MaterialPageRoute(builder: (context) => MyPage(data: data));
);
},
child: Card(
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10.0)),
elevation: 2.0,
child: Container(
child: Center(
child: Text(data['businessName'],
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.black,
fontSize: 20.0,
),
)
)
)
),
);
}