Routine.fromJson constructor

Routine.fromJson(
  1. Map json_
)

Implementation

Routine.fromJson(core.Map json_)
  : this(
      definitionBody: json_['definitionBody'] as core.String?,
      routineType: json_['routineType'] as core.String?,
    );