I want to make a snackbar like YouTube uses for connection status, but I am not able to change the height of the snackbar. Can anybody help me on this?

Here is the code I have done.
Get.snackbar("", "You are connected to internet",
snackPosition: SnackPosition.BOTTOM,
backgroundColor: Colors.green,
padding: EdgeInsets.symmetric(
vertical: 0,
),
barBlur: 0,
maxWidth: double.infinity,
snackStyle: SnackStyle.GROUNDED,
borderRadius: 0.0);

