DistributionInitResult.fromJson constructor

DistributionInitResult.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}