CacheStorageText constructor

const CacheStorageText({
  1. Key? key,
  2. required String initialValue,
  3. required void onUpdate(
    1. String newValue
    ),
  4. required PageStyle pageStyle,
  5. bool isJson = false,
})

Implementation

const CacheStorageText({
  Key? key,
  required this.initialValue,
  required this.onUpdate,
  required this.pageStyle,
  this.isJson = false,
}) : super(key: key);