decode static method
Implementation
static ExperimentCondition? decode(dynamic json) {
if (json == null) {
return null;
}
if (json is! Map<String, dynamic>) {
return null;
}
return ExperimentCondition(
property: StringDecoder.decode(json['property']),
asType: UserPropertyTypeExtension.decode(json['asType']),
operator: StringDecoder.decode(json['operator']),
value: StringDecoder.decode(json['value']),
);
}