VerifyJobRunMetadata.fromJson constructor

VerifyJobRunMetadata.fromJson(
  1. Map json_
)

Implementation

VerifyJobRunMetadata.fromJson(core.Map json_)
  : this(
      custom: json_.containsKey('custom')
          ? CustomMetadata.fromJson(
              json_['custom'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );