copyWith method

PropertyKeys copyWith({
  1. List<PropertyKey>? keys,
})

Implementation

PropertyKeys copyWith({List<PropertyKey>? keys}) {
  return PropertyKeys(
    keys: keys ?? this.keys,
  );
}