copyWith method

ZIndex copyWith({
  1. int? value,
})

Implementation

ZIndex copyWith({
  int? value
}) {
  return ZIndex(
    value ?? this.value
  );
}