GattOperationReceivedEvent.fromJson constructor
Implementation
factory GattOperationReceivedEvent.fromJson(Map<String, dynamic> json) {
  return GattOperationReceivedEvent(
    address: json['address'] as String,
    type: GATTOperationType.fromJson(json['type'] as String),
  );
}