If all you care about is the height, not the position, then prepare to have your mind blown! :D
Set your snackbar content to:
Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
'Your SnackBar message',
),
SizedBox(
height: 70, // Your desired height
)
],
))