ApplicationContext.fromJson constructor

ApplicationContext.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ApplicationContext.fromJson(Map<String, dynamic> json) =>
    ApplicationContext(
      fromRawMapToMapStringKeys(json['current'] as Map),
      fromRawMapToMapStringKeys(json['received'] as Map),
    );