copyWith method

SensorInstallInfoEntity copyWith({
  1. String? method,
  2. Params? params,
})

Implementation

SensorInstallInfoEntity copyWith({
  String? method,
  Params? params,
}) =>
    SensorInstallInfoEntity(
      method: method ?? this.method,
      params: params ?? this.params,
    );