// // AUTO-GENERATED FILE, DO NOT MODIFY! // // @dart=2.12 // ignore_for_file: unused_element, unused_import // ignore_for_file: always_put_required_named_parameters_first // ignore_for_file: constant_identifier_names // ignore_for_file: lines_longer_than_80_chars import 'package:openapi/api.dart'; import 'package:test/test.dart'; // tests for GridWidgetModel void main() { // final instance = GridWidgetModel(); group('test GridWidgetModel', () { // String type test('to test the property `type`', () async { // TODO }); // The grid widget's unique identifier. Can be null, if a new widget is created within a grid. // int id test('to test the property `id`', () async { // TODO }); // An alternative, human legible, and unique identifier. // String identifier test('to test the property `identifier`', () async { // TODO }); // The index of the starting row of the widget. The row is inclusive. // int startRow test('to test the property `startRow`', () async { // TODO }); // The index of the ending row of the widget. The row is exclusive. // int endRow test('to test the property `endRow`', () async { // TODO }); // The index of the starting column of the widget. The column is inclusive. // int startColumn test('to test the property `startColumn`', () async { // TODO }); // The index of the ending column of the widget. The column is exclusive. // int endColumn test('to test the property `endColumn`', () async { // TODO }); // Object options test('to test the property `options`', () async { // TODO }); }); }