SuperStickerMetadata.fromJson constructor

SuperStickerMetadata.fromJson(
  1. Map json_
)

Implementation

SuperStickerMetadata.fromJson(core.Map json_)
    : this(
        altText: json_.containsKey('altText')
            ? json_['altText'] as core.String
            : null,
        altTextLanguage: json_.containsKey('altTextLanguage')
            ? json_['altTextLanguage'] as core.String
            : null,
        stickerId: json_.containsKey('stickerId')
            ? json_['stickerId'] as core.String
            : null,
      );