ActionTriggerGitPull.fromJson constructor

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

Implementation

factory ActionTriggerGitPull.fromJson(Map<String, dynamic> json) => ActionTriggerGitPull(
    forceFullRebuild: (json['ForceFullRebuild'] as bool?) ?? false,
    target: (json['Target'] as String?),
);