@@ -100,8 +100,8 @@ extension type StylePropertyMap._(JSObject _)
100
100
/// The **`set()` ** method of the [StylePropertyMap]
101
101
/// interface changes the CSS declaration with the given property.
102
102
external void set (
103
- String property,
104
- JSAny value1, [
103
+ String property, [
104
+ JSAny value1,
105
105
JSAny value2,
106
106
JSAny value3,
107
107
JSAny value4,
@@ -111,8 +111,8 @@ extension type StylePropertyMap._(JSObject _)
111
111
/// [StylePropertyMap] interface adds the passed CSS value to the
112
112
/// `StylePropertyMap` with the given property.
113
113
external void append (
114
- String property,
115
- JSAny value1, [
114
+ String property, [
115
+ JSAny value1,
116
116
JSAny value2,
117
117
JSAny value3,
118
118
JSAny value4,
@@ -256,8 +256,8 @@ extension type CSSNumericValue._(JSObject _)
256
256
/// The **`add()` ** method of the
257
257
/// [CSSNumericValue] interface adds a supplied number to the
258
258
/// `CSSNumericValue` .
259
- external CSSNumericValue add (
260
- CSSNumberish value1, [
259
+ external CSSNumericValue add ([
260
+ CSSNumberish value1,
261
261
CSSNumberish value2,
262
262
CSSNumberish value3,
263
263
CSSNumberish value4,
@@ -266,8 +266,8 @@ extension type CSSNumericValue._(JSObject _)
266
266
/// The **`sub()` ** method of the
267
267
/// [CSSNumericValue] interface subtracts a supplied number from the
268
268
/// `CSSNumericValue` .
269
- external CSSNumericValue sub (
270
- CSSNumberish value1, [
269
+ external CSSNumericValue sub ([
270
+ CSSNumberish value1,
271
271
CSSNumberish value2,
272
272
CSSNumberish value3,
273
273
CSSNumberish value4,
@@ -276,8 +276,8 @@ extension type CSSNumericValue._(JSObject _)
276
276
/// The **`mul()` ** method of the
277
277
/// [CSSNumericValue] interface multiplies the `CSSNumericValue` by
278
278
/// the supplied value.
279
- external CSSNumericValue mul (
280
- CSSNumberish value1, [
279
+ external CSSNumericValue mul ([
280
+ CSSNumberish value1,
281
281
CSSNumberish value2,
282
282
CSSNumberish value3,
283
283
CSSNumberish value4,
@@ -286,8 +286,8 @@ extension type CSSNumericValue._(JSObject _)
286
286
/// The **`div()` ** method of the
287
287
/// [CSSNumericValue] interface divides the `CSSNumericValue` by the
288
288
/// supplied value.
289
- external CSSNumericValue div (
290
- CSSNumberish value1, [
289
+ external CSSNumericValue div ([
290
+ CSSNumberish value1,
291
291
CSSNumberish value2,
292
292
CSSNumberish value3,
293
293
CSSNumberish value4,
@@ -296,8 +296,8 @@ extension type CSSNumericValue._(JSObject _)
296
296
/// The **`min()` ** method of the
297
297
/// [CSSNumericValue] interface returns the lowest value from among those
298
298
/// values passed. The passed values must be of the same type.
299
- external CSSNumericValue min (
300
- CSSNumberish value1, [
299
+ external CSSNumericValue min ([
300
+ CSSNumberish value1,
301
301
CSSNumberish value2,
302
302
CSSNumberish value3,
303
303
CSSNumberish value4,
@@ -307,8 +307,8 @@ extension type CSSNumericValue._(JSObject _)
307
307
/// [CSSNumericValue] interface returns the highest value from among the
308
308
/// values
309
309
/// passed. The passed values must be of the same type.
310
- external CSSNumericValue max (
311
- CSSNumberish value1, [
310
+ external CSSNumericValue max ([
311
+ CSSNumberish value1,
312
312
CSSNumberish value2,
313
313
CSSNumberish value3,
314
314
CSSNumberish value4,
@@ -322,8 +322,8 @@ extension type CSSNumericValue._(JSObject _)
322
322
/// be of the same type and value and must be in the same order. This allows
323
323
/// structural
324
324
/// equality to be tested quickly.
325
- external bool equals (
326
- CSSNumberish value1, [
325
+ external bool equals ([
326
+ CSSNumberish value1,
327
327
CSSNumberish value2,
328
328
CSSNumberish value3,
329
329
CSSNumberish value4,
@@ -337,8 +337,8 @@ extension type CSSNumericValue._(JSObject _)
337
337
/// The **`toSum()` ** method of the
338
338
/// [CSSNumericValue] interface converts the object's value to a
339
339
/// [CSSMathSum] object to values of the specified unit.
340
- external CSSMathSum toSum (
341
- String unit1, [
340
+ external CSSMathSum toSum ([
341
+ String unit1,
342
342
String unit2,
343
343
String unit3,
344
344
String unit4,
0 commit comments