skipPersist method

Future<bool?> skipPersist()

You can use this method to enable/disable persistence for this controller. Returns null by default. Because this is asynchronous, you can do any asynchronous code.

Implementation

Future<bool?> skipPersist() async => null;