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