fromJson static method
Implementation
static TestVectorString? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return TestVectorString(
value: List<String>.from(
tdListFromJson(
json['value'],
).map((item) => (item as dynamic)?.toString() ?? ''),
),
);
}