Skip to content

Commit 7eae3bf

Browse files
committed
#21 Formatted BackgoundLocationUpdateData to run build
1 parent 4ad6d51 commit 7eae3bf

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

lib/src/model/background_location_update_data.dart

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,28 @@
44
class BackgroundLocationUpdateData {
55
/// Latitude
66
final double lat;
7+
78
/// Longitude
89
final double lon;
10+
911
/// The radius of uncertainty for the location, measured in meters. Negative value if not available.
1012
final double horizontalAccuracy;
13+
1114
/// Altitude
1215
final double alt;
16+
1317
/// The validity of the altitude values, and their estimated uncertainty, measured in meters. Negative value if not available.
1418
final double verticalAccuracy;
19+
1520
/// Direction in which the device is traveling, measured in degrees and relative to due north. Negative value if not available.
1621
final double course;
22+
1723
/// The accuracy of the course value, measured in degrees. Negative value if not available.
1824
final double courseAccuracy;
25+
1926
/// Instantaneous speed of the device, measured in meters per second. Negative value if not available.
2027
final double speed;
28+
2129
/// The accuracy of the speed value, measured in meters per second. Negative value if not available.
2230
final double speedAccuracy;
2331

@@ -30,6 +38,6 @@ class BackgroundLocationUpdateData {
3038
required this.course,
3139
required this.courseAccuracy,
3240
required this.speed,
33-
required this.speedAccuracy
41+
required this.speedAccuracy,
3442
});
3543
}

0 commit comments

Comments
 (0)