DeleteBranchOutput.fromJson constructor

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

Implementation

factory DeleteBranchOutput.fromJson(Map<String, dynamic> json) {
  return DeleteBranchOutput(
    deletedBranch: json['deletedBranch'] != null
        ? BranchInfo.fromJson(json['deletedBranch'] as Map<String, dynamic>)
        : null,
  );
}