ReleaseContextRequestedEvent.fromJson constructor
Implementation
factory ReleaseContextRequestedEvent.fromJson(Map<String, dynamic> json) {
return ReleaseContextRequestedEvent(
requestId: json['requestId'] as String,
contextId: json['contextId'] as int,
);
}