fromJson static method

RecentSticker fromJson(
  1. dynamic json
)

Parse RecentEmoji from json

Implementation

static RecentSticker fromJson(dynamic json) {
  return RecentSticker(
    Sticker.fromJson(json['sticker'] as Map<String, dynamic>),
    json['counter'] as int,
  );
}