copyWith method
Implementation
SamplingSchedule copyWith(
{int? samplingScheduleType, int? registerMapId, int? intervalSeconds}) {
return SamplingSchedule(
samplingScheduleType: samplingScheduleType ?? this.samplingScheduleType,
registerMapId: registerMapId ?? this.registerMapId,
intervalSeconds: intervalSeconds ?? this.intervalSeconds);
}