ProductionBranch.fromJson constructor

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

Implementation

factory ProductionBranch.fromJson(Map<String, dynamic> json) {
  return ProductionBranch(
    branchName: json['branchName'] as String?,
    lastDeployTime: timeStampFromJson(json['lastDeployTime']),
    status: json['status'] as String?,
    thumbnailUrl: json['thumbnailUrl'] as String?,
  );
}