AnnotationValue.fromJson constructor

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

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?,
  );
}