copyWith method Null safety
inherited
Implementation
RunLocationOdometer copyWith(
{num? plugin, num? customClean, num? customCleanAntihover}) {
return RunLocationOdometer(
plugin: plugin ?? this.plugin,
customClean: customClean ?? this.customClean,
customCleanAntihover: customCleanAntihover ?? this.customCleanAntihover,
);
}