ListReadersRequestedEvent.fromJson constructor

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

Implementation

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