fromJson static method

TencentCloudChatCustomStickerItem fromJson(
  1. dynamic json
)

Implementation

static TencentCloudChatCustomStickerItem fromJson(json) {
  return TencentCloudChatCustomStickerItem(name: json["name"] ?? "", path: json["path"] ?? "");
}