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