A11yServiceEvent.fromJson constructor

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

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