6 lines
127 B
Dart
6 lines
127 B
Dart
|
import 'dart:html';
|
||
|
|
||
|
Rectangle createRectangle(left, top, width, height) {
|
||
|
return new Rectangle(left, top, width, height);
|
||
|
}
|