WatchCreativeRequest.fromJson constructor

WatchCreativeRequest.fromJson(
  1. Map _json
)

Implementation

WatchCreativeRequest.fromJson(core.Map _json)
    : this(
        topic:
            _json.containsKey('topic') ? _json['topic'] as core.String : null,
      );