PushMessageContentSticker.fromJson constructor
Parse from a json
Implementation
factory PushMessageContentSticker.fromJson(Map<String, dynamic> json) => PushMessageContentSticker(
sticker: json['sticker'] == null ? null : Sticker.fromJson(json['sticker']),
emoji: json['emoji'],
isPinned: json['is_pinned'],
);