BindingCalledEvent.fromJson constructor
Implementation
factory BindingCalledEvent.fromJson(Map<String, dynamic> json) {
return BindingCalledEvent(
name: json['name'] as String,
payload: json['payload'] as String,
executionContextId:
ExecutionContextId.fromJson(json['executionContextId'] as int),
);
}