getLocalGameSummary static method

Future<GameSummary> getLocalGameSummary()

Obtains the information about the current game from the local cache.

Implementation

static Future<GameSummary> getLocalGameSummary() async {
  final dynamic response = await _channel.invokeMethod(
    'GameSummaryClient.getLocalGameSummary',
  );
  return GameSummary.fromMap(Map<dynamic, dynamic>.from(response));
}