OfferTag.fromJson constructor

OfferTag.fromJson(
  1. Map json_
)

Implementation

OfferTag.fromJson(core.Map json_)
    : this(
        tag: json_.containsKey('tag') ? json_['tag'] as core.String : null,
      );