TestVectorIntObject.fromJson constructor

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

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'],
);