CheckInfo.fromJson constructor

CheckInfo.fromJson(
  1. Map json_
)

Implementation

CheckInfo.fromJson(core.Map json_)
    : this(
        apiKeyUid: json_['apiKeyUid'] as core.String?,
        consumerInfo: json_.containsKey('consumerInfo')
            ? ConsumerInfo.fromJson(
                json_['consumerInfo'] as core.Map<core.String, core.dynamic>)
            : null,
        unusedArguments: (json_['unusedArguments'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );