TestingDetails.fromJson constructor

TestingDetails.fromJson(
  1. Map json_
)

Implementation

TestingDetails.fromJson(core.Map json_)
    : this(
        isTestingResponse: json_.containsKey('isTestingResponse')
            ? json_['isTestingResponse'] as core.bool
            : null,
      );