copyWith method

Points$Response copyWith({
  1. List<Object>? points,
})

Implementation

Points$Response copyWith({List<Object>? points}) {
  return Points$Response(points: points ?? this.points);
}