TMeUrlTypeStickerSet.fromJson constructor

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

Parse from a json

Implementation

factory TMeUrlTypeStickerSet.fromJson(Map<String, dynamic> json) =>
    TMeUrlTypeStickerSet(
      stickerSetId: int.parse(json['sticker_set_id']),
    );