AndroidPublishConfig.fromMap constructor
AndroidPublishConfig.fromMap(
- YamlMap data
Converts the YAML map to an instance of AndroidPublishConfig
The data should first be validated with the isValid function
Implementation
factory AndroidPublishConfig.fromMap(yaml.YamlMap data) {
return AndroidPublishConfig(
credentialPath: data["credentialPath"],
releaseTrack: data["releaseTrack"],
bundleID: data["bundleID"],
outputFilePath: data["outputFilePath"],
);
}