AnnotationValue.fromJson constructor
Implementation
factory AnnotationValue.fromJson(Map<String, dynamic> json) {
return AnnotationValue(
booleanValue: json['BooleanValue'] as bool?,
numberValue: json['NumberValue'] as double?,
stringValue: json['StringValue'] as String?,
);
}