ActionSetState.fromJson constructor

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

Implementation

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