toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'depth': depth,
    'bounds': bounds,
    'id': id,
    'packageName': packageName,
    'className': className,
    'text': text,
    'description': description,
    'clickable': clickable,
    'scrollable': scrollable,
    'editable': editable,
  };
}