AddCreativeRequest.fromJson constructor

AddCreativeRequest.fromJson(
  1. Map json_
)

Implementation

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