ReleaseContextRequestedEvent.fromJson constructor

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

Implementation

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