show method
Implementation
Future<DateTime?> show({BottomSheetOptions? options}) async {
final position = await popupBottomSheet<List<int>?>(options: options);
if (position == null || key == null) return null;
return (key as GlobalKey<_DatePickerState>)
.currentState
?.indexToDatetime(position);
}