ExecutionProperty.fromJson constructor

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

Implementation

factory ExecutionProperty.fromJson(Map<String, dynamic> json) {
  return ExecutionProperty(
    maxConcurrentRuns: json['MaxConcurrentRuns'] as int?,
  );
}