OneTimeSchedule.fromJson constructor

OneTimeSchedule.fromJson(
  1. Map json_
)

Implementation

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