InputStickerStatic.fromJson constructor
Parse from a json
Implementation
factory InputStickerStatic.fromJson(Map<String, dynamic> json) => InputStickerStatic(
sticker: InputFile.fromJson(json['sticker']),
emojis: json['emojis'],
maskPosition: json['mask_position'] == null ? null : MaskPosition.fromJson(json['mask_position']),
);