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