copyWith method
Implementation
PlatformHeading copyWith({
LocationCourse? heading,
Duration? timestamp
}) {
return PlatformHeading(
heading: heading ?? this.heading,
timestamp: timestamp ?? this.timestamp
);
}
PlatformHeading copyWith({
LocationCourse? heading,
Duration? timestamp
}) {
return PlatformHeading(
heading: heading ?? this.heading,
timestamp: timestamp ?? this.timestamp
);
}