A11yServiceEvent.fromJson constructor
Implementation
factory A11yServiceEvent.fromJson(Map<String, dynamic> json) {
return A11yServiceEvent(
packageName: json['packageName'] as String?,
className: json['className'] as String?,
text: json['text'] as String?,
description: json['description'] as String?,
);
}