TestDetails.fromJson constructor

TestDetails.fromJson(
  1. Map json_
)

Implementation

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