init method
Public APIs to be implemented by any Persistor extension like FilePersistor.
Initialization function called when the persistor is instantiated to execute and setup work.
Implementation
@override
Future<void> init() {
throw UnimplementedError();
}