KhaltiConfig.platformOnly constructor

KhaltiConfig.platformOnly()

A factory constructor that only configures the platform and ignores everything else.

Implementation

factory KhaltiConfig.platformOnly() {
  return KhaltiConfig(
    platform: Platform.operatingSystem,
    osVersion: '',
    deviceModel: '',
    deviceManufacturer: '',
    packageName: '',
    packageVersion: '',
  );
}