AnyValueArray.fromJson constructor

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

Creates a new instance of the array from JSON.

  • json values to initialize this array.

Implementation

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