deserialize method

  1. @protected
T? deserialize(
  1. String? data
)

override this for more complex data types than the ones supported by shared_preferences.

Implementation

@protected
T? deserialize(String? data) {
  return null;
}