LedData copyWith({ String? ledName, int? ledValue, }) { return LedData( ledName: ledName ?? this.ledName, ledValue: ledValue ?? this.ledValue, ); }