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