AssetPropertyVariant.fromJson constructor
Implementation
factory AssetPropertyVariant.fromJson(Map<String, dynamic> json) {
return AssetPropertyVariant(
booleanValue: json['booleanValue'] as String?,
doubleValue: json['doubleValue'] as String?,
integerValue: json['integerValue'] as String?,
stringValue: json['stringValue'] as String?,
);
}