copyWith method
- bool? isConnected,
- List<
PeripheralParamV2> ? parameters,
Implementation
PeripheralV2 copyWith(
{bool? isConnected, List<PeripheralParamV2>? parameters}) {
return PeripheralV2(
isConnected: isConnected ?? this.isConnected,
parameters: parameters ?? this.parameters);
}