copyWith method

BleConfig copyWith({
  1. Duration? connectionStabilizationDelay,
})

Implementation

BleConfig copyWith({
  Duration? connectionStabilizationDelay,
}) =>
    BleConfig(
      connectionStabilizationDelay:
          connectionStabilizationDelay ?? this.connectionStabilizationDelay,
    );