getInitialState method
Fetches the initial state or full state from the server. Returns a list of operations representing the history or current state.
Implementation
@override
Future<List<Operation>> getInitialState() async {
if (_innerClient != null) {
return _innerClient!.getInitialState();
}
return [];
}