copyWith method

SetNetworkType copyWith({
  1. NetworkType? type,
})

Implementation

SetNetworkType copyWith({
  NetworkType? type,
}) =>
    SetNetworkType(
      type: type ?? this.type,
    );