PersistentKeyboardHeightProvider constructor

const PersistentKeyboardHeightProvider({
  1. required Widget child,
  2. IPersistentKeyboardHeightStorageProvider storageProvider = const SharedPreferencesPersistentKeyboardSizeStorageProvider(),
  3. Key? key,
})

Implementation

const PersistentKeyboardHeightProvider({
  required this.child,
  this.storageProvider =
      const SharedPreferencesPersistentKeyboardSizeStorageProvider(),
  Key? key,
}) : super(key: key);