Predeploy.fromJson constructor

Predeploy.fromJson(
  1. Map json_
)

Implementation

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