ActionSetState.fromJson constructor
Implementation
factory ActionSetState.fromJson(Map<String, dynamic> json) => ActionSetState(
key: (json['Key'] as String?) ?? '',
typeName: (json['TypeName'] as String?) ?? '',
valueJson: (json['ValueJson'] as String?) ?? '',
);