CuepointSchedule.fromJson constructor

CuepointSchedule.fromJson(
  1. Map json_
)

Implementation

CuepointSchedule.fromJson(core.Map json_)
  : this(
      enabled: json_['enabled'] as core.bool?,
      pauseAdsUntil: json_['pauseAdsUntil'] as core.String?,
      repeatIntervalSecs: json_['repeatIntervalSecs'] as core.int?,
      scheduleStrategy: json_['scheduleStrategy'] as core.String?,
    );