PredeployJob.fromJson constructor

PredeployJob.fromJson(
  1. Map json_
)

Implementation

PredeployJob.fromJson(core.Map json_)
  : this(
      actions: (json_['actions'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );