Issue constructor

Issue({
  1. NodegroupIssueCode? code,
  2. String? message,
  3. List<String>? resourceIds,
})

Implementation

Issue({
  this.code,
  this.message,
  this.resourceIds,
});