artifactStrategy property

String? get artifactStrategy

Implementation

String? get artifactStrategy {
  return _json['artifactStrategy'] as String?;
}
set artifactStrategy (String? value)

Implementation

set artifactStrategy(String? value) {
  if (value == null) {
    _json.remove('artifactStrategy');
  } else {
    _json['artifactStrategy'] = value;
  }
}