CacheStorageDate constructor

const CacheStorageDate({
  1. Key? key,
  2. required String initialValue,
  3. required void onUpdate(
    1. String newValue
    ),
  4. required PageStyle pageStyle,
})

Implementation

const CacheStorageDate({
  Key? key,
  required this.initialValue,
  required this.onUpdate,
  required this.pageStyle,
}) : super(key: key);