fromJson static method
Inherited by: AffiliateTypeBot AffiliateTypeChannel AffiliateTypeCurrentUser
Implementation
static AffiliateTypeCurrentUser? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const AffiliateTypeCurrentUser();
}