StepResult.fromJson constructor

StepResult.fromJson(
  1. Map json_
)

Implementation

StepResult.fromJson(core.Map json_)
  : this(
      attestationContent: json_['attestationContent'] as core.String?,
      attestationType: json_['attestationType'] as core.String?,
      name: json_['name'] as core.String?,
    );