fetchState method

  1. @override
Future<Map<String, String>> fetchState(
  1. String url
)
override

On the client, this should perform a http request to url to fetch state data from the server.

Implementation

@override
Future<Map<String, String>> fetchState(String url) {
  throw 'Cannot fetch state on the server';
}