EndTransactionRequestedEvent.fromJson constructor

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

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),
  );
}