Application constructor

Application({
  1. int applicationId,
  2. @required String applicationIdentifier,
  3. String name,
  4. String version,
  5. String developer,
  6. String modelName,
  7. Model model,
})

Returns a new Application instance.

Implementation

Application({
  this.applicationId,
  @required this.applicationIdentifier,
  this.name,
  this.version,
  this.developer,
  this.modelName,
  this.model,
});