AppInfoInstance constructor

AppInfoInstance({
  1. required String name,
})

Creates a new instance of AppInfoInstance

Implementation

AppInfoInstance({
  required String name,
}) : super(
        name: 'AppInfo',
        properties: [
          Property.string(key: 'name', value: name),
        ],
      );