copyWith method

LaunchState copyWith({
  1. int? selectedTab,
  2. List<InfospectNetworkCall>? networkCalls,
})

Implementation

LaunchState copyWith({
  int? selectedTab,
  List<InfospectNetworkCall>? networkCalls,
}) {
  return LaunchState(
    selectedTab: selectedTab ?? this.selectedTab,
  );
}