AnyValue.fromJson constructor

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

Creates a new instance of the object from json.

  • json json to initialize this object.

Implementation

factory AnyValue.fromJson(Map<String, dynamic> json) {
  return AnyValue(json['value']);
}