Step.fromJson constructor

Step.fromJson(
  1. Map json_
)

Implementation

Step.fromJson(core.Map json_)
  : this(
      routine: json_['routine'] as core.String?,
      step: json_['step'] as core.String?,
    );