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