TestVectorStringObject.fromJson constructor
Parse from a json
Implementation
factory TestVectorStringObject.fromJson(Map<String, dynamic> json) => TestVectorStringObject(
value: List<TestString>.from((json['value'] ?? []).map((item) => TestString.fromJson(item)).toList()),
extra: json['@extra'],
clientId: json['@client_id'],
);