DistributionInitResult.fromJson constructor
Creates a DistributionInitResult instance from a JSON map.
Implementation
factory DistributionInitResult.fromJson(Map<String, dynamic> json) {
return DistributionInitResult(
git: json['git'] ?? false,
fastlane: json['fastlane'] ?? false,
fastlaneJson: json['fastlane_json'] ?? false,
xcrun: json['xcrun'] ?? false,
firebase: json['firebase'] ?? false,
);
}