MatexCountryJob constructor
MatexCountryJob({
- MatexCountryJobDelegate? delegate,
Constructs a new instance of MatexCountryJob.
Uses a factory constructor to ensure that only a single instance of this class exists. If an instance does not exist, it will be created.
Implementation
factory MatexCountryJob({MatexCountryJobDelegate? delegate}) {
return (_singleton ??= MatexCountryJob._(delegate: delegate));
}