InternalLinkTypeStickerSet.fromJson constructor

InternalLinkTypeStickerSet.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory InternalLinkTypeStickerSet.fromJson(Map<String, dynamic> json) =>
    InternalLinkTypeStickerSet(
      stickerSetName: json['sticker_set_name'],
      expectCustomEmoji: json['expect_custom_emoji'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );