copyWith method

FoundPosition copyWith({
  1. int? position,
})

Implementation

FoundPosition copyWith({int? position}) =>
    FoundPosition(position: position ?? this.position);