copyWith method

GetNetworkStatistics copyWith({
  1. bool? onlyCurrent,
})

Implementation

GetNetworkStatistics copyWith({
  bool? onlyCurrent,
}) =>
    GetNetworkStatistics(
      onlyCurrent: onlyCurrent ?? this.onlyCurrent,
    );