ApplicationConfig class

Application configuration

ApplicationConfig(
  path, //path to application file
  version, //version of the application defaults to 0xFFFFFFFF
};
Annotations
  • @JsonSerializable.new(anyMap: true, checked: true)

Constructors

ApplicationConfig({String? path, int version = 0xFFFFFFFF})
Creates an instance of ApplicationConfig
const
ApplicationConfig.fromJson(Map json)
Creates ApplicationConfig from json
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
path String?
Path to application file
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
version int
Version of the application provided
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Creates Map from ApplicationConfig
toString() String
Converts ApplicationConfig to String
override

Operators

operator ==(Object other) bool
The equality operator.
inherited