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