cloneWith method

ARBAttribute cloneWith({
  1. String? value,
})

Implementation

ARBAttribute cloneWith({
  String? value,
}) {
  return ARBAttribute(
    number: number,
    key: key,
    value: value ?? this.value,
  );
}