fromJson static method
Implementation
static BusinessStartPage? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return BusinessStartPage(
title: (json['title'] as String?) ?? '',
message: (json['message'] as String?) ?? '',
sticker: Sticker.fromJson(tdMapFromJson(json['sticker'])),
);
}