MediaPlanner.fromJson constructor

MediaPlanner.fromJson(
  1. Map json_
)

Implementation

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