GoogleCloudDatalabelingV1beta1ObjectTrackingConfig.fromJson constructor

GoogleCloudDatalabelingV1beta1ObjectTrackingConfig.fromJson(
  1. Map _json
)

Implementation

GoogleCloudDatalabelingV1beta1ObjectTrackingConfig.fromJson(core.Map _json)
    : this(
        annotationSpecSet: _json.containsKey('annotationSpecSet')
            ? _json['annotationSpecSet'] as core.String
            : null,
        clipLength: _json.containsKey('clipLength')
            ? _json['clipLength'] as core.int
            : null,
        overlapLength: _json.containsKey('overlapLength')
            ? _json['overlapLength'] as core.int
            : null,
      );