@@ -222,34 +222,46 @@ class Query {
222222
223223 /// Filter resources where [attribute] is at a specific distance from the given coordinates.
224224 static String distanceEqual (
225- String attribute, List <dynamic > values, num distance,
226- [bool meters = true ]) =>
225+ String attribute,
226+ List <dynamic > values,
227+ num distance, [
228+ bool meters = true ,
229+ ]) =>
227230 Query ._('distanceEqual' , attribute, [
228- [values, distance, meters]
231+ [values, distance, meters],
229232 ]).toString ();
230233
231234 /// Filter resources where [attribute] is not at a specific distance from the given coordinates.
232235 static String distanceNotEqual (
233- String attribute, List <dynamic > values, num distance,
234- [bool meters = true ]) =>
236+ String attribute,
237+ List <dynamic > values,
238+ num distance, [
239+ bool meters = true ,
240+ ]) =>
235241 Query ._('distanceNotEqual' , attribute, [
236- [values, distance, meters]
242+ [values, distance, meters],
237243 ]).toString ();
238244
239245 /// Filter resources where [attribute] is at a distance greater than the specified value from the given coordinates.
240246 static String distanceGreaterThan (
241- String attribute, List <dynamic > values, num distance,
242- [bool meters = true ]) =>
247+ String attribute,
248+ List <dynamic > values,
249+ num distance, [
250+ bool meters = true ,
251+ ]) =>
243252 Query ._('distanceGreaterThan' , attribute, [
244- [values, distance, meters]
253+ [values, distance, meters],
245254 ]).toString ();
246255
247256 /// Filter resources where [attribute] is at a distance less than the specified value from the given coordinates.
248257 static String distanceLessThan (
249- String attribute, List <dynamic > values, num distance,
250- [bool meters = true ]) =>
258+ String attribute,
259+ List <dynamic > values,
260+ num distance, [
261+ bool meters = true ,
262+ ]) =>
251263 Query ._('distanceLessThan' , attribute, [
252- [values, distance, meters]
264+ [values, distance, meters],
253265 ]).toString ();
254266
255267 /// Filter resources where [attribute] intersects with the given geometry.
0 commit comments