DiceStickersRegular.fromJson constructor

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

Parse from a json

Implementation

factory DiceStickersRegular.fromJson(Map<String, dynamic> json) =>
    DiceStickersRegular(
      sticker: Sticker.fromJson(json['sticker']),
    );