SetAttribRequestedEvent.fromJson constructor

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

Implementation

factory SetAttribRequestedEvent.fromJson(Map<String, dynamic> json) {
  return SetAttribRequestedEvent(
    requestId: json['requestId'] as String,
    handle: json['handle'] as int,
    attribId: json['attribId'] as int,
    data: json['data'] as String,
  );
}