copyWith method

Input$CheckRunAction copyWith({
  1. String? description,
  2. String? identifier,
  3. String? label,
})

Implementation

Input$CheckRunAction copyWith(
        {String? description, String? identifier, String? label}) =>
    Input$CheckRunAction(
        description: description == null ? this.description : description,
        identifier: identifier == null ? this.identifier : identifier,
        label: label == null ? this.label : label);