SecurityStateChangedEvent.fromJson constructor
Implementation
factory SecurityStateChangedEvent.fromJson(Map<String, dynamic> json) {
return SecurityStateChangedEvent(
securityState: SecurityState.fromJson(json['securityState'] as String),
);
}